home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-09 | 666 b | 34 lines | [TEXT/ObLi] |
- MODULE HelloWorld;
-
- IMPORT
- SYSTEM, TB:= MacToolbox,ME:=MacMemory,TE:=MacText,IM:=MacImaging;
-
- VAR
- window : TB.WindowPtr;
- wRect : IM.Rect;
- string : ME.Str255;
-
- BEGIN
- IM.InitGraf(IM.QuickDraw.thePort);
- TE.InitFonts;
- TB.InitWindows;
- TB.InitMenus;
- TE.TEInit;
- TB.InitDialogs(NIL);
- IM.InitCursor;
-
- IM.SetRect(wRect, 50, 50, 400, 200);
- window:=TB.NewWindow(NIL, wRect, '', TRUE, 0, SYSTEM.VAL(TB.WindowPtr,-1), FALSE, 0);
-
- IM.SetPort(window);
- IM.MoveTo(30,30);
- TB.SetStr255(string, 'Hello World');
- TE.DrawString(string);
-
- REPEAT
- UNTIL TB.Button();
-
- TB.DisposeWindow(window);
-
- END HelloWorld.
-